home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr37 / ho5m.zip / SAMPLE.BAT < prev    next >
DOS Batch File  |  1995-02-01  |  518b  |  26 lines

  1. @echo off
  2. wiz sample.scr ho.exe site.ho
  3. if errorlevel 255 goto bad_script
  4. if errorlevel 4 goto no_ho
  5. if errorlevel 3 goto abort_no_file
  6. if errorlevel 2 goto abort_mid
  7. if errorlevel 1 goto abort_start
  8. echo Success!
  9. goto done
  10. :bad_script
  11. echo Bad play script
  12. goto done
  13. :no_ho
  14. echo Could not establish HANDS ON link
  15. goto done
  16. :abort_no_file
  17. echo Aborted due to file not found
  18. goto done
  19. :abort_mid
  20. echo Aborted mid-file
  21. goto done
  22. :abort_start
  23. echo Aborted before starting transfer
  24. goto done
  25. :done
  26.